home *** CD-ROM | disk | FTP | other *** search
/ PC-SIG: World of Games / PC-SIG World of Games (CDRM1080710) (1993).iso / SWMAG / DISK1533.ZIP / README.DOC < prev    next >
Text File  |  1989-02-22  |  6KB  |  132 lines

  1.  
  2.  
  3. Version of 22 February 1989.
  4.  
  5.  
  6. DLT.COM (C) -- Routine should be installed on the system directory
  7.                or first search directory and used instead of the
  8.                DOS/OS delete/erase command, del and erase cannot
  9.                delete multiple datasets without the use of the
  10.                wildcard, which is not always suitable.  This routine
  11.                will delete multiple files on the command line
  12.                as the unix RM command ( wildcards are not supported ).
  13.  
  14.          Options: /t == Type dataset names as deleted.
  15.                   /f == Use force if need be to delete R/O datsets.
  16.  
  17. /* .................................................................. */
  18.  
  19. ENTAB.COM (C)  Routine will convert spaces in datasets to tabs
  20.                according to options specified, or default processing
  21.                using 8 spaces per tab.
  22.  
  23.          Options: ... see source for usage
  24.  
  25. /* .................................................................. */
  26.  
  27. HEAD.COM (C) - Routine is the standard unix HEAD command, it will
  28.                read n lines ( 20 default ), from the start of a
  29.                dataset and write them onto std output, output until
  30.                eof if dataset does not have 20 (or n) records.
  31.  
  32.          Options:  ... see source for options and usage.
  33. /* .................................................................. */
  34.  
  35.  
  36. MERGE.COM (C)  Routine will read the .A output from the Turbo
  37.                C compiler and read the .C source, and merge the
  38.                two, this is useful to see how the compiler has
  39.                translated individual code segments.
  40.  
  41. /* .................................................................. */
  42.  
  43. PR.COM (C)  -- Routine is the standard unix PR function, it will
  44.                generated formatted print files with carriage ctl
  45.                and send the formatted output onto std output,
  46.                output can be filed or printed.
  47.  
  48.          Options: ... see source for usage.
  49.  
  50. /* .................................................................. */
  51.  
  52. SIZEOF.COM (C) Routine is the standard unix SIZEOF routine,
  53.                wildcard processing is supported, options are
  54.                supported -- see source for usage.
  55.  
  56. /* .................................................................. */
  57.  
  58. STGMAP.COM (ASM)  Routine will trace through memory reporting
  59.                the names and sizes and hooked vectors for
  60.                all active load modules in memory, names omitted
  61.                with CP versions under 3.x.
  62.                This function is useful to determine if virus
  63.                programs or renegade TSR programs are present.
  64.                Note: This function cannot terminate any virus
  65.                program, and makes no attempt to analyze memory
  66.                patterns to determine if any module has suspicious
  67.                coding, or segment math, etc ...
  68.  
  69.                Options are supported, read source, or use
  70.                STGMAP /? for info.
  71.  
  72.                There are two modes, ... standard, includes all
  73.                available information, or /F (fast mode), no
  74.                vector search is performed.
  75.  
  76. /* .................................................................. */
  77.  
  78. TAIL.COM (C) - Routine is similar to the Unix TAIL function, it
  79.                reads n (20 default) lines from the bottom of a
  80.                dataset toward the top and writes these records
  81.                onto standard output in dataset record order,
  82.                so line n-1 is output before n, as they appear in
  83.                the dataset.
  84.  
  85. /* .................................................................. */
  86.  
  87. TEE.COM (C) -- Routine is similar to the unix TEE function, it
  88.                will accept a dataset name, and optionally std file
  89.                redirection for input and output, .. a copy of
  90.                standard output is sent onto the file named in the
  91.                command line -- this is a FILTER function.
  92.  
  93. TP.COM (C)  -- Routine should be used to replace the DOS/CP TYPE
  94.                command.  This function will type a dataset onto
  95.                standard console output, there are a rich number
  96.                of options supported to control output, such as
  97.                tp/p file file file ... , files are output 1 tube
  98.                at a time followed by --More-- prompt.
  99.                Use: TP /H for verbose help.
  100.  
  101. /* .................................................................. */
  102.  
  103. WILD.C (C)  -- Routine is the source function for supporting
  104.                file wildcard processing.
  105.  
  106. /* .................................................................. */
  107.  
  108. CMDLINE.C (C)  Routine is the source function for supporting
  109.                command line switch processing.
  110.  
  111.  
  112. /* .................................................................. */
  113.  
  114.  
  115.     22-Feb-89 - Steve Leoce
  116.        **       2251 Pimmit Drive; Apt #1228
  117.        **       Falls Church, Virginia  22043-2829
  118.  
  119.  
  120.     Software is public domain and may be used without penalty or
  121.     permission for any non commercial purposes.
  122.  
  123.     PS: I have gotten many questions about required contributions
  124.     to the cost of development; as always I never require any
  125.     contributions -- if you really can't sleep, send whatever you
  126.     think it may be worth to you...
  127.  
  128.     Please contact me at the above address to direct any questions
  129.     or commentary you might have.
  130.  
  131.     -- Steve;
  132.